Get all entries in a judge round
This endpoint gives you access to all entries in a given judge round, in pages of 100.
caution
You can find the identifier of a judge round by looking at the "id" property returned from the /judge-rounds endpoint.
curl https://platform.younoodle.com/client-api/v1/competition/my_competition/judge-rounds/my_judge_round/entries \
-H 'YouNoodle-API-Key: 56f9bbec9bc614e351e5eea2ea851e31' \
-H 'Accept: application/json'
The above command returns JSON structured like this:
{
"object" => "list",
"count" => 2,
"page" => 1
"has_more" => false,
"data": [
{
"id": 53256,
"object": "judge_round_entry",
"url": "/client-api/v1/competition/the_honey_badger_challenge/judge-rounds/honey_badger_judging_1/entries",
"name": "An entry",
"created_at": 1364399716,
"identifier": "4fe593ad58408b9efb4070e04ffce44c",
"submitted_at": 0,
"final_score": 0,
"judging_progress": 0,
"track": "Aerospace"
},
{
"id": 53257,
"object": "judge_round_entry",
"url": "/client-api/v1/competition/the_honey_badger_challenge/judge-rounds/honey_badger_judging_1/entries",
"name": "Another entry",
"created_at": 1364399717,
"identifier": "4fe593ad58408b9efb4070e04ffce44d",
"submitted_at": 1364399716,
"final_score": 0.5,
"judging_progress": 1,
"track": "IoT"
}
]
}
HTTP Request
GET https://platform.younoodle.com/client-api/v1/competition/<id>/judge-rounds/<judge-round-id>/entries
Query parameters
Add ?page=n as a request parameter to page through the data.
URL Parameters
| Parameter | Description |
|---|---|
| id | Your competition identifier |
| judge-round-id | The judge round identifier whose entries you want to access |